home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000041_news@newsmaster….columbia.edu _Wed Dec 23 16:29:05 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA18669
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 23 Dec 1998 16:29:04 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id QAA16131
  7.     for kermit.misc@watsun; Wed, 23 Dec 1998 16:29:04 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: automation script calling external protocol (Zmodem)
  12. Date: 23 Dec 1998 21:29:02 GMT
  13. Organization: Columbia University
  14. Lines: 39
  15. Message-ID: <75rnau$11b$1@apakabar.cc.columbia.edu>
  16. References: <367FD6BF.1B4D30FD@acxiom.com> <368050A1.6BAA0CC5@conwaycorp.net> <75pr43$3gb$1@apakabar.cc.columbia.edu> <368140BB.C487C5EA@conwaycorp.net>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9673
  19.  
  20. In article <368140BB.C487C5EA@conwaycorp.net>,
  21. reggie wanza  <wanza@conwaycorp.net> wrote:
  22. : I tried the receive command in the script and it worked (THANK YOU).  I
  23. : didn't think kermit commands like send or receive were a part of the
  24. : scripting language.
  25. :
  26. You can put any Kermit commands at all into a Kermit script.
  27.  
  28. : I just typed receive in the script.  I thought It was necessary to have
  29. : input or output commands, which would echo to the remote wildcat server.
  30. : I also had issue about how to completely hang-up.  I stuffed a hang-up
  31. : command at the end of the script and it hung up the phone and then I
  32. : stuffed an exit at the end of the script to exit from kermit when
  33. : completed.  I guess that's one way to do it.  Is there a better way?
  34. :
  35. It depends what you mean by "stuff".  Did you OUTPUT hangup\13 to the other
  36. side, or did you just put "hangup" in your script as a Kermit command?
  37. Each one does about what you would think.
  38.  
  39. : We did purchase a couple copies of using C-Kermit (second edition), but
  40. : most of the scripts seem to address dialing another kermit server and
  41. : doesn't address downloading files from a non kermit server.  I didn't
  42. : notice anything about using local commands in the scripts.
  43. :
  44. As noted, you can put any Kermit commands in your scripts.
  45.  
  46. : Any additional comments would be helpful.  It seems to be working for the
  47. : download side, We'll write scripts to upload as well, but just wanted to
  48. : get your opinion on whether the scripts are being written to take
  49. : advantage of the scripting commands.
  50. A BBS is a fullscreen application, and so input does not necessarily arrive
  51. from it in a linear fashion.  Although the book does not discuss scripting
  52. BBS login and navigation explicitly, there is a section on logging into an
  53. IBM mainframe fullscreen session, which is similar.
  54.  
  55. - Frank
  56.